home *** CD-ROM | disk | FTP | other *** search
- #
- # Watcom makefile for QUICK [Win16]
- # Requires SEE16.DLL & SEE16.LIB
- #
- # TO MAKE: wmake -f quick16._W_
- #
-
- CCFLAGS = -c -oaxt -d2 -w4 -zW
-
- OBJS = quick.obj about.obj param.obj paint.obj str.obj
-
- quick.exe: $(OBJS) quick.res quick.def see16.lib
- wlink @quick16.lnk
- wrc quick.res
-
- quick.res: $(OBJS) quick.rc
- wrc -r -bt=windows quick.rc
-
- about.obj: about.c about.h
- wcl $(CCFLAGS) about.c
-
- param.obj: param.c param.h
- wcl $(CCFLAGS) param.c
-
- paint.obj: paint.c paint.h see.h
- wcl $(CCFLAGS) paint.c
-
- quick.obj: quick.c see.h
- wcl $(CCFLAGS) quick.c
-
- str.obj: str.c str.h see.h
- wcl $(CCFLAGS) str.c
-
-
-